@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


*{
    margin: 0;
    padding: 0;
}
body{
  font-family: "Poppins", sans-serif;
  font-style: normal;
  background-color: rgb(255, 255, 255);
  background-attachment: fixed;
  background-repeat: no-repeat;

}

    /*CABEZERA-------------------------------------------------------*/
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


    *{
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }
    body{
      font-family: "Poppins", sans-serif;
      font-style: normal;
    
    
    }
    .btn-wsp{
      position:fixed;
      width:60px;
      height:60px;
      line-height: 63px;
      bottom:25px;
      right:25px;
      background:#25d366;
      color:#FFF;
      border-radius:50px;
      text-align:center;
      font-size:35px;
      box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
      z-index:100;
      transition: all 300ms ease;
    }
    .btn-wsp:hover{
      background: #20ba5a;
    }
    @media only screen and (min-width:320px) and (max-width:768px){
      .btn-wsp{
          width:63px;
          height:63px;
          line-height: 66px;
    }
    }
        /*CABEZERA-------------------------------------------------------*/
    
    .ri-home-fill{
        color: rgb(248, 9, 9);
        display:contents;
    }
    .header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #0036A2;
        padding: 0px 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
        max-width: 100%;
        height: 70px;
    }
    
     
    .logo img{
    width: 70px;
    padding: 10px;
    
    }
    
    
    .navigation ul{
        list-style: none;
    }
    
    
    .header .navigation ul li{
        float: left;
        position: relative;
    }
    .header .navigation ul li a{
        font-size: 14px;
        color: white;
        text-decoration: none;
        padding: 20px;
        display: block;
        transition: all .2s ease;
      
    }
    
    .header .navigation ul li a:hover{
    background-color:#0042c5;
    transition: all.2s;
    }
    
    .navigation ul li ul li{
        cursor: pointer;
        padding: 5px;
    }
    
    .header .navigation ul li ul{
        position: absolute;
        right: 100;
        width: 150px;
        background-color: #0036A2;
        display: none;
        color: rgb(255, 255, 255);
        padding: 10px 5px 5px 5px;
    
    
    }
    
    .header .navigation ul li ul li a{
     font-size: 14px;
     padding: 10px;
     text-transform: capitalize;
    }
    
    .header .navigation ul li ul li a:hover{
        background-color: #0443c2;
       transition: all.5s;
       }
    .header .navigation ul li ul li ul{
        position: absolute;
        top: -10px;
        left: 140px;
        width: 200px;
        
    }
    
    .header .navigation ul li ul li{
        width: 100%;
    }
    
    .header .navigation ul li:hover > ul{
        display: initial;
    }
    
    
    #toggle,
    
    .header label{
        display: none;
        cursor: pointer;
        }
    
    
     
    
        @media(max-width:1121px){
            .header label{
                display: initial;
    
            }
    
            .header{
                padding: 20px 10px;
            }
    
            .header .navigation{
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #0036A2;
                display: none;
            }
    
            .header .navigation ul li{
                width: 100%;
    
            }
    
            .header .navigation ul li a{
                padding: 8px 30px 8px 10%;
            }
    
            .header .navigation ul li ul{
                position: relative;
                width: 100%;
                left: 0;
            }
            .header .navigation ul li ul li{
                background-color: #0036A2;
    
            }
            .header .navigation ul li ul li ul{
                position: relative;
                width: 100%;
                left: 0;
            }
    
            #toggle:checked  ~.navigation{
                display: block;
            } 
        
        
        
        
            .containerall_port{
                margin: 0 auto;
                width: 100%;
                height: 400px;
        
            }
    
          .menu{
                width: 40px;
            }
    
        }
    






        .container-all-from{
            width: 100%;
            height: 650px;
            background-image: linear-gradient(to top, #0244a730 0%, #ffffff 100%);
            margin-top: 190px;
        }






        .formulario {
            width: 500px;
            max-width: 100%;
            margin: auto;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
            position: relative;
            background: rgba(255, 255, 255, 0.97);
          }
          
          
          .formulario__titulo,
          .formulario__subtitulo,
          .formulario__parrafo {
            text-align: center;
            margin-top: 0;
          }
          .formulario__titulo,
          .formulario__subtitulo {
            color: rgba(0, 0, 0, 0.7);
          }
          .formulario__parrafo {
            color: rgba(0, 0, 0, 0.5);
          }
          .formulario__input,
          .formulario__label {
            display: block;
            width: 100%;
          }
          .formulario__input {
            padding: 5px;
            background: transparent;
            /* puedo colocar otro color pero con transparencia asi: background: rgba(0,0,0,0.1) porque sino no se ven las label, aunque ya no es necesario porque ya no estan sobre los input y ademas le quite el z-index*/
            border: 1px solid rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
        
          }
          .formulario__input:focus {
            /*outline: 1px solid rgba(0,0,0,0.7);*/
            outline: none;
            box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.7);
          }
          /*.formulario__input:focus + .formulario__label{
              margin-top: -120px;
          }*/
          .formulario__label {
            padding-left: 15px;
            /*position: absolute;*/
            /*margin-top: -78px;*/
            /*z-index: -20;*/
            color: rgba(0, 0, 0, 0.7);
            /*transition: all 0.2s;*/
            margin: 2px;
          }
          .formulario__submit {
            background:#0036A2;
            color: white;
            padding: 10px 20px;
            cursor: pointer;
            border: none;
            border-radius: 20px;
            display: block;
            width: 30%;
            font-size: 1, 3em;
            margin-top: -50px;
          }
          
          /*Centrar los campos del formulario (Los input y el boton de Enviar al WhatsApp, que tambien es un input)*/
          
          .formulario__input,
          .formulario__submit {
            margin-left: auto;
            margin-right: auto;
          }
          
          /*.fijar {
              margin-top: -120px;
          } */
          
          /* respuesta del formulario */
          #respuesta {
            width: 100%;
            height: 100px;
            margin: 5px;
          }
          #respuesta.fail {
            color: rgb(190, 190, 190);
          }
          #respuesta.send {
            color: rgb(0, 13, 255);
          }
        


          @media(max-width:1121px){
            
        .formulario {
            width: 350px;
            max-width: 100%;
            margin: auto;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
            position: relative;
            background: rgba(255, 255, 255, 0.97);
          }
          
          }































        
/* Footer */
.footer {
    margin: auto;
    width: 100%;
    background: #0036A2;
    font-size: 14px;
  }
  .abautme{
    width: 20%;
    background: #0042c5;
  }
  .copy{
    text-align: center;
    padding: 20px;
    margin-top: -20px;
    color: rgba(255, 255, 255, 0.295);
  }
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
  }
  .footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
  }
  .footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
  }
  .footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
  }
  .footer-col .links li a:hover {
    color: #fff;
  }
  .footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
  }
  .footer-col form {
    display: flex;
    gap: 5px;
  }
  .footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6 ;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }
  .footer-col input::placeholder {
    color: #ccc;
  }
   .footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .footer-col form button:hover {
    background: #cecccc;
  }
  .footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
  }
  .footer-col .icons i {
    color: #afb6c7;
  }
  .footer-col .icons i:hover  {
    color: #fff;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
    .footer .footer-row {
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form {
      display: block;
    }
    .footer-col form :where(input, button) {
      width: 100%;
    }
    .footer-col form button {
      margin: 10px 0 0 0;
    }
  }











